home *** CD-ROM | disk | FTP | other *** search
- ' Preferences
-
- Type apptPrefs
- timeStart As Variant
- timeEnd As Variant
- timeIncrement As Variant
- End Type
-
- Global Prefs As apptPrefs
-
- ' Constants not included elsewhere
-
- Global Const LTGREY = &HC0C0C0
-
- Sub Main ()
-
- ' Set up preferences and display the main form.
-
- Prefs.timeStart = TimeValue("8:00am")
- Prefs.timeEnd = TimeValue("6:00pm")
- Prefs.timeIncrement = TimeValue("0:30")
-
- ApptForm.Show
-
- End Sub
-
-